home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-03-10 | 774 b | 26 lines | [TEXT/CWIE] |
- // ===========================================================================
- // Exhibit.h
- // ===========================================================================
-
- #pragma once
- #include <LApplication.h>
-
- class Exhibit : public LApplication {
- public:
- Exhibit(); // constructor registers all PPobs
- virtual ~Exhibit(); // stub destructor
-
- // this overriding function performs application functions
-
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
-
- // this overriding function returns the status of menu items
-
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
-
- protected:
-
- virtual void StartUp(); // overriding startup functions
- };